home *** CD-ROM | disk | FTP | other *** search
/ Old Testament Foundatiosn with Philip Yancey / Old Testament Foundatiosn with Philip Yancey - Disc 2.iso / pc / data / notes.dir / 00027.ls < prev    next >
Encoding:
Text File  |  1996-09-09  |  809 b   |  43 lines

  1. on exitFrame
  2.   global gReleaseMouse, gHelp
  3.   if gReleaseMouse then
  4.     if gHelp then
  5.       openHelp()
  6.       go("notes")
  7.     else
  8.       go("notes")
  9.     end if
  10.   else
  11.     if rollOver(5) then
  12.       set the castNum of sprite 5 to cast "file.down"
  13.       pupSprites(1, 48, 0)
  14.       updateStage()
  15.       go("file")
  16.     end if
  17.     if rollOver(10) then
  18.       nothing()
  19.     end if
  20.     if rollOver(11) then
  21.       set the castNum of sprite 11 to cast "help.down"
  22.       updateStage()
  23.     else
  24.       set the castNum of sprite 11 to cast "help.up"
  25.       updateStage()
  26.     end if
  27.     go(the frame)
  28.   end if
  29. end
  30.  
  31. on mouseUp
  32.   global gReleaseMouse, gHelp
  33.   set gReleaseMouse to 1
  34.   if rollOver(11) then
  35.     set gHelp to 1
  36.     pupSprites(1, 48, 0)
  37.     updateStage()
  38.   else
  39.     pupSprites(1, 48, 0)
  40.     updateStage()
  41.   end if
  42. end
  43.